home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-04-03 | 1.8 KB | 64 lines | [TEXT/MPS ] |
- ; File: E16.Font
- ;
- ;
- ; Copyright Apple Computer, Inc. 1986-90
- ; All Rights Reserved
- ;
- ;
- fmDupStartUpErr EQU $1B01 ; duplicate FMStartUp call
- fmResetErr EQU $1B02 ; can't reset the Font Manager
- fmNotActiveErr EQU $1B03 ; Font Manager not active
- fmFamNotFndErr EQU $1B04 ; family not found
- fmFontNtFndErr EQU $1B05 ; font not found
- fmFontMemErr EQU $1B06 ; font not in memory
- fmSysFontErr EQU $1B07 ; system font cannot be purgeable
- fmBadFamNumErr EQU $1B08 ; illegal family number
- fmBadSizeErr EQU $1B09 ; illegal size
- fmBadNameErr EQU $1B0A ; illegal name length
- fmMenuErr EQU $1B0B ; fix font menu never called
- fmScaleSizeErr EQU $1B0C ; scaled size of font exeeds limits
- chicago EQU $FFFD
- shaston EQU $FFFE
- systemFont0 EQU $0000
- systemFont1 EQU $0001
- newYork EQU $0002
- geneva EQU $0003
- monaco EQU $0004
- venice EQU $0005
- london EQU $0006
- athens EQU $0007
- sanFrancisco EQU $0008
- toronto EQU $0009
- cairo EQU $000B
- losAngeles EQU $000C
- zapfDingbats EQU $000D
- bookman EQU $000E
- helveticaNarrow EQU $000F
- palatino EQU $0010
- zapfChancery EQU $0012
- times EQU $0014
- helvetica EQU $0015
- courier EQU $0016
- symbol EQU $0017
- taliesin EQU $0018
- avanteGarde EQU $0021
- newCenturySchoolbook EQU $0022
- baseOnlyBit EQU $0020 ; FamSpecBits
- notBaseBit EQU $0020 ; FamStatBits
- memOnlyBit EQU $0001 ; FontSpecBits
- realOnlyBit EQU $0002 ; FontSpecBits
- anyFamBit EQU $0004 ; FontSpecBits
- anyStyleBit EQU $0008 ; FontSpecBits
- anySizeBit EQU $0010 ; FontSpecBits
- memBit EQU $0001 ; FontStatBits
- unrealBit EQU $0002 ; FontStatBits
- apFamBit EQU $0004 ; FontStatBits
- apVarBit EQU $0008 ; FontStatBits
- purgeBit EQU $0010 ; FontStatBits
- notDiskBit EQU $0020 ; FontStatBits
- notFoundBit EQU $8000 ; FontStatBits
- dontScaleBit EQU $0001 ; Scale Word
- ; offset constants for FontStatRec
- oresultID EQU 0
- oresultStats EQU 4
-